equal precedence meaning in English
相等优先性
Examples
- When operators of equal precedence appear in the same expression , a rule must govern which is evaluated first
当一个表达式中出现相同优先级的运算符的时候。 - Operators with equal precedence are evaluated left to right in the order in which they appear in the expression
具有相同优先顺序的运算符将按照它们在表达式中出现的顺序从左至右进行计算。 - All comparison operators have equal precedence , and all have higher precedence than the logical and bitwise operators , but lower precedence than the arithmetic and concatenation operators
比较运算符具有相同的优先级,它们的优先级均高于逻辑运算符和位运算符,但低于算术运算符和串联运算符。 - If the character is an operator , pop operators until you reach an opening parenthesis , an operator of lower precedence , or a right associative symbol of equal precedence
如果字符是个操作符,弹出( pop )操作符,直至遇见开括号( opening parenthesis ) 、优先级较低的操作符或者同一优先级的右结合符号。 - When operators of equal precedence appear together in an expression , for example multiplication and division , the compiler evaluates each operation as it encounters it from left to right
当具有相同优先级的运算符(例如乘法和除法)在表达式中一起出现时,编译器将按每个运算符出现的顺序从左至右进行计算。